home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
EDUCATE
/
PSYCHMED.ARJ
/
MENU.BAT
< prev
next >
Wrap
DOS Batch File
|
1989-09-30
|
380b
|
32 lines
echo off
cls
bmenu 10 25 " MENU CHOICES " "1. Psych Meds " "2. Quit to DOS"
if errorlevel 5 goto 5
if errorlevel 4 goto 4
if errorlevel 3 goto 3
if errorlevel 2 goto 2
if errorlevel 1 goto 1
if errorlevel 0 goto 0
:5
echo not available
goto end
:4
echo not available
goto end
:3
CLS
goto end
:2
CLS
goto end
:1
cls
goto end
:0
psymed.bat
:end